home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib8
/
v_10_09
/
1009020a
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-11-01
|
257 b
|
21 lines
// LISTING 1
#ifndef JMPSTACK_H
#define JMPSTACK_H
#include <setjmp.h>
class JmpStack {
enum {SIZE=100};
jmp_buf stack[SIZE];
int current;
public:
JmpStack() {current = -1;}
jmp_buf& operator++(); // push
jmp_buf& operator--(); // pop
};
#endif